.about-page-section {
    padding: 100px 20px 80px 20px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

.about-page-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-subtitle {
    color: #36AD49;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}

.about-page-header h2 {
    font-size: 36px;
    color: #1e293b;
    margin-top: 5px;
}

.about-accent-line {
    width: 50px;
    height: 4px;
    background-color: #36AD49;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.about-page-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-column p {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text-column .lead-text {
    font-size: 19px;
    color: #334155;
    line-height: 1.6;
}

/* Scatola dei Valori */
.values-box {
    background-color: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    border-left: 4px solid #36AD49;
}

.values-box h3 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 15px;
}

.values-box ul {
    list-style: none;
    padding: 0;
}

.values-box ul li {
    margin-bottom: 12px;
    color: #475569;
    font-size: 15px;
}

.values-box ul li:last-child {
    margin-bottom: 0;
}

/* Immagine di presentazione */
.about-image-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 992px) {
    .about-page-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-wrapper {
        height: 300px;
    }
}